home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 28
/
Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso
/
Aminet
/
gfx
/
misc
/
MesaGL-aux.lha
/
src
/
Makefile
< prev
next >
Wrap
Makefile
|
1998-09-16
|
1KB
|
57 lines
# Makefile for aux toolkit
# Mesa 3-D graphics library
# Version: 2.5
# Copyright (C) 1995-1996 Brian Paul
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this library; if not, write to the Free
# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
##### MACROS #####
VPATH = RCS
INCDIR = ../include
LIBDIR = ../lib
OBJECTS = glaux$(O) font$(O) image$(O) shapes$(O) teapot$(O) vect3d$(O) xxform$(O)
##### RULES #####
%$(O): %.c
$(CC) -c -I$(INCDIR) $(CFLAGS) -resident -malways-restore-a4 $<
##### TARGETS #####
default:
@echo "Specify a target configuration"
clean:
-rm *$(O) *~
targets: $(LIBDIR)/$(AUX_LIB)
# Make the library
$(LIBDIR)/$(AUX_LIB): $(OBJECTS)
$(MAKELIB) $(AUX_LIB) $(MAJOR) $(MINOR) $(OBJECTS)
include ../Make-config